Bokeh ColumnDataSource This function creates a scatter plot and uses a color bar to represent the color values of the data. It accepts a dataset containing x, y, and color values. Bokeh visualization 2024-12-16 12:15:56 9 views
Cartopy Matplotlib This custom function uses Cartopy and Matplotlib to plot a contour map. It takes longitude, latitude, and data as inputs and creates a visualization with coastlines, national and state boundaries, and a colorbar. Custom function 2024-12-16 11:59:56 3 views
seaborn numpy This function generates a scatter plot with a colorbar using the seaborn library. The function accepts a DataFrame, names of columns for the x-axis, y-axis, and the hue mapping, a palette for the color mapping, and the size of the scatter points. The type of code 2024-12-16 11:59:10 3 views
HoloViews NumPy This custom function generates a random 2D data HoloMap containing 5x5 random data, with a colorbar and title added. HoloViews custom function 2024-12-16 11:42:03 4 views
Cartopy Numpy This function creates a random map using the Cartopy library. It first creates a figure and an axes with Cartopy's projection, then generates some random data, and creates a contour plot with these data. Finally, it adds coastlines, a title, and a colorbar, and displays the map. Function 2024-12-16 11:34:27 3 views
Cartopy NumPy This function creates a weather map using the Cartopy library to plot temperature data on a map. It takes latitude and longitude data as input, and uses scatter plots to display the temperature data, with a colorbar to indicate different temperature values. Map drawing 2024-12-16 11:25:28 6 views
Bokeh NumPy This code defines a function that uses the Bokeh library to create a line plot with a color bar. The data source is generated using NumPy, the color mapper adjusts the color automatically based on the y values, and the color bar displays the range of y values. The type of code 2024-12-16 11:20:05 3 views
Bokeh This function creates a scatter plot and displays the color of each point based on a color mapping. It uses components from the Bokeh library such as `figure`, `scatter`, `LinearColorMapper`, and `ColorBar`. Function 2024-12-07 16:27:23 7 views
Bokeh ColumnDataSource This code defines a function to create a heatmap using the Bokeh library. The function accepts data, x and y axis ranges, and a color palette as parameters, and displays the generated heatmap. Function 2024-12-07 16:20:58 3 views
Bokeh NumPy This code defines a function that generates a random scatter plot using Bokeh, with a color bar on the right to represent density. Function 2024-12-07 16:14:56 3 views